home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / gdb-4.5 / dist / gdb / mips-tdep.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-03  |  25.2 KB  |  825 lines

  1. /* Target-dependent code for the MIPS architecture, for GDB, the GNU Debugger.
  2.    Copyright 1988, 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
  3.    Contributed by Alessandro Forin(af@cs.cmu.edu) at CMU
  4.    and by Per Bothner(bothner@cs.wisc.edu) at U.Wisconsin.
  5.  
  6. This file is part of GDB.
  7.  
  8. This program is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 2 of the License, or
  11. (at your option) any later version.
  12.  
  13. This program is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with this program; if not, write to the Free Software
  20. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22. #include "defs.h"
  23. #include "frame.h"
  24. #include "inferior.h"
  25. #include "symtab.h"
  26. #include "value.h"
  27. #include "gdbcmd.h"
  28. #include "language.h"
  29.  
  30. #ifdef USG
  31. #include <sys/types.h>
  32. #endif
  33.  
  34. #include <sys/param.h>
  35. #include <sys/dir.h>
  36. #include <signal.h>
  37. #include <sys/ioctl.h>
  38.  
  39. #ifdef sgi
  40. /* Must do it this way only for SGIs, as other mips platforms get their
  41.    JB_ symbols from machine/pcb.h (included via sys/user.h). */
  42. #include <setjmp.h>
  43. #endif
  44.  
  45. #include "gdbcore.h"
  46. #include "symfile.h"
  47. #include "objfiles.h"
  48.  
  49. #ifndef    MIPSMAGIC
  50. #ifdef MIPSEL
  51. #define MIPSMAGIC    MIPSELMAGIC
  52. #else
  53. #define MIPSMAGIC    MIPSEBMAGIC
  54. #endif
  55. #endif
  56.  
  57. #define VM_MIN_ADDRESS (unsigned)0x400000
  58.  
  59. #include <sys/user.h>        /* After a.out.h  */
  60. #include <sys/file.h>
  61. #include <sys/stat.h>
  62.  
  63.  
  64. #define PROC_LOW_ADDR(proc) ((proc)->pdr.adr) /* least address */
  65. #define PROC_HIGH_ADDR(proc) ((proc)->pdr.iline) /* upper address bound */
  66. #define PROC_FRAME_OFFSET(proc) ((proc)->pdr.frameoffset)
  67. #define PROC_FRAME_REG(proc) ((proc)->pdr.framereg)
  68. #define PROC_REG_MASK(proc) ((proc)->pdr.regmask)
  69. #define PROC_FREG_MASK(proc) ((proc)->pdr.fregmask)
  70. #define PROC_REG_OFFSET(proc) ((proc)->pdr.regoffset)
  71. #define PROC_FREG_OFFSET(proc) ((proc)->pdr.fregoffset)
  72. #define PROC_PC_REG(proc) ((proc)->pdr.pcreg)
  73. #define PROC_SYMBOL(proc) (*(struct symbol**)&(proc)->pdr.isym)
  74. #define _PROC_MAGIC_ 0x0F0F0F0F
  75. #define PROC_DESC_IS_DUMMY(proc) ((proc)->pdr.isym == _PROC_MAGIC_)
  76. #define SET_PROC_DESC_IS_DUMMY(proc) ((proc)->pdr.isym = _PROC_MAGIC_)
  77.  
  78. struct linked_proc_info
  79. {
  80.   struct mips_extra_func_info info;
  81.   struct linked_proc_info *next;
  82. } * linked_proc_desc_table = NULL;
  83.  
  84.  
  85. #define READ_FRAME_REG(fi, regno) read_next_frame_reg((fi)->next, regno)
  86.  
  87. static int
  88. read_next_frame_reg(fi, regno)
  89.      FRAME fi;
  90.      int regno;
  91. {
  92. #define SIGFRAME_BASE   sizeof(struct sigcontext)
  93. #define SIGFRAME_PC_OFF (-SIGFRAME_BASE+ 2*sizeof(int))
  94. #define SIGFRAME_SP_OFF (-SIGFRAME_BASE+32*sizeof(int))
  95. #define SIGFRAME_RA_OFF (-SIGFRAME_BASE+34*sizeof(int))
  96.   for (; fi; fi = fi->next)
  97.       if (in_sigtramp(fi->pc, 0)) {
  98.       /* No idea if this code works. --PB. */
  99.       int offset;
  100.       if (regno == PC_REGNUM) offset = SIGFRAME_PC_OFF;
  101.       else if (regno == RA_REGNUM) offset = SIGFRAME_RA_OFF;
  102.       else if (regno == SP_REGNUM) offset = SIGFRAME_SP_OFF;
  103.       else return 0;
  104.       return read_memory_integer(fi->frame + offset, 4);
  105.       }
  106.       else if (regno == SP_REGNUM) return fi->frame;
  107.       else if (fi->saved_regs->regs[regno])
  108.     return read_memory_integer(fi->saved_regs->regs[regno], 4);
  109.   return read_register(regno);
  110. }
  111.  
  112. int
  113. mips_frame_saved_pc(frame)
  114.      FRAME frame;
  115. {
  116.   mips_extra_func_info_t proc_desc = frame->proc_desc;
  117.   int pcreg = proc_desc ? PROC_PC_REG(proc_desc) : RA_REGNUM;
  118.  
  119.   if (proc_desc && PROC_DESC_IS_DUMMY(proc_desc))
  120.       return read_memory_integer(frame->frame - 4, 4);
  121.  
  122.   return read_next_frame_reg(frame, pcreg);
  123. }
  124.  
  125. static struct mips_extra_func_info temp_proc_desc;
  126. static struct frame_saved_regs temp_saved_regs;
  127.  
  128. static CORE_ADDR
  129. heuristic_proc_start(pc)
  130.     CORE_ADDR pc;
  131. {
  132.  
  133.     CORE_ADDR start_pc = pc;
  134.     CORE_ADDR fence = start_pc - 200;
  135.     if (fence < VM_MIN_ADDRESS) fence = VM_MIN_ADDRESS;
  136.     /* search back for previous return */
  137.     for (start_pc -= 4; ; start_pc -= 4)
  138.     if (start_pc < fence) return 0; 
  139.     else if (ABOUT_TO_RETURN(start_pc))
  140.         break;
  141.  
  142.     start_pc += 8; /* skip return, and its delay slot */
  143. #if 0
  144.     /* skip nops (usually 1) 0 - is this */
  145.     while (start_pc < pc && read_memory_integer (start_pc, 4) == 0)
  146.     start_pc += 4;
  147. #endif
  148.     return start_pc;
  149. }
  150.  
  151. static mips_extra_func_info_t
  152. heuristic_proc_desc(start_pc, limit_pc, next_frame)
  153.     CORE_ADDR start_pc, limit_pc;
  154.     FRAME next_frame;
  155. {
  156.     CORE_ADDR sp = next_frame ? next_frame->frame : read_register (SP_REGNUM);
  157.     CORE_ADDR cur_pc;
  158.     int frame_size;
  159.     int has_frame_reg = 0;
  160.     int reg30; /* Value of $r30. Used by gcc for frame-pointer */
  161.     unsigned long reg_mask = 0;
  162.  
  163.     if (start_pc == 0) return NULL;
  164.     bzero(&temp_proc_desc, sizeof(temp_proc_desc));
  165.     bzero(&temp_saved_regs, sizeof(struct frame_saved_regs));
  166.     if (start_pc + 200 < limit_pc) limit_pc = start_pc + 200;
  167.   restart:
  168.     frame_size = 0;
  169.     for (cur_pc = start_pc; cur_pc < limit_pc; cur_pc += 4) {
  170.     unsigned long word;
  171.     int status;
  172.  
  173.     status = read_memory_nobpt (cur_pc, &word, 4); 
  174.     if (status) memory_error (status, cur_pc); 
  175.     SWAP_TARGET_AND_HOST (&word, sizeof (word));
  176.     if ((word & 0xFFFF0000) == 0x27bd0000) /* addiu $sp,$sp,-i */
  177.         frame_size += (-word) & 0xFFFF;
  178.     else if ((word & 0xFFFF0000) == 0x23bd0000) /* addu $sp,$sp,-i */
  179.         frame_size += (-word) & 0xFFFF;
  180.     else if ((word & 0xFFE00000) == 0xafa00000) { /* sw reg,offset($sp) */
  181.         int reg = (word & 0x001F0000) >> 16;
  182.         reg_mask |= 1 << reg;
  183.         temp_saved_regs.regs[reg] = sp + (short)word;
  184.     }
  185.     else if ((word & 0xFFFF0000) == 0x27be0000) { /* addiu $30,$sp,size */
  186.         if ((unsigned short)word != frame_size)
  187.         reg30 = sp + (unsigned short)word;
  188.         else if (!has_frame_reg) {
  189.         int alloca_adjust;
  190.         has_frame_reg = 1;
  191.         reg30 = read_next_frame_reg(next_frame, 30);
  192.         alloca_adjust = reg30 - (sp + (unsigned short)word);
  193.         if (alloca_adjust > 0) {
  194.             /* FP > SP + frame_size. This may be because
  195.             /* of an alloca or somethings similar.
  196.              * Fix sp to "pre-alloca" value, and try again.
  197.              */
  198.             sp += alloca_adjust;
  199.             goto restart;
  200.         }
  201.         }
  202.     }
  203.     else if ((word & 0xFFE00000) == 0xafc00000) { /* sw reg,offset($30) */
  204.         int reg = (word & 0x001F0000) >> 16;
  205.         reg_mask |= 1 << reg;
  206.         temp_saved_regs.regs[reg] = reg30 + (short)word;
  207.     }
  208.     }
  209.     if (has_frame_reg) {
  210.     PROC_FRAME_REG(&temp_proc_desc) = 30;
  211.     PROC_FRAME_OFFSET(&temp_proc_desc) = 0;
  212.     }
  213.     else {
  214.     PROC_FRAME_REG(&temp_proc_desc) = SP_REGNUM;
  215.     PROC_FRAME_OFFSET(&temp_proc_desc) = frame_size;
  216.     }
  217.     PROC_REG_MASK(&temp_proc_desc) = reg_mask;
  218.     PROC_PC_REG(&temp_proc_desc) = RA_REGNUM;
  219.     return &temp_proc_desc;
  220. }
  221.  
  222. static mips_extra_func_info_t
  223. find_proc_desc(pc, next_frame)
  224.     CORE_ADDR pc;
  225.     FRAME next_frame;
  226. {
  227.   mips_extra_func_info_t proc_desc;
  228.   struct block *b = block_for_pc(pc);
  229.   struct symbol *sym =
  230.       b ? lookup_symbol(".gdbinfo.", b, LABEL_NAMESPACE, 0, NULL) : NULL;
  231.  
  232.   if (sym)
  233.     {
  234.     /* IF this is the topmost frame AND
  235.      * (this proc does not have debugging information OR
  236.      * the PC is in the procedure prologue)
  237.      * THEN create a "heuristic" proc_desc (by analyzing
  238.      * the actual code) to replace the "official" proc_desc.
  239.      */
  240.     proc_desc = (mips_extra_func_info_t)SYMBOL_VALUE(sym);
  241.     if (next_frame == NULL) {
  242.         struct symtab_and_line val;
  243.         struct symbol *proc_symbol =
  244.         PROC_DESC_IS_DUMMY(proc_desc) ? 0 : PROC_SYMBOL(proc_desc);
  245.  
  246.         if (proc_symbol) {
  247.         val = find_pc_line (BLOCK_START
  248.                     (SYMBOL_BLOCK_VALUE(proc_symbol)),
  249.                     0);
  250.         val.pc = val.end ? val.end : pc;
  251.         }
  252.         if (!proc_symbol || pc < val.pc) {
  253.         mips_extra_func_info_t found_heuristic =
  254.             heuristic_proc_desc(PROC_LOW_ADDR(proc_desc),
  255.                     pc, next_frame);
  256.         if (found_heuristic) proc_desc = found_heuristic;
  257.         }
  258.     }
  259.     }
  260.   else
  261.     {
  262.       /* Is linked_proc_desc_table really necessary?  It only seems to be used
  263.      by procedure call dummys.  However, the procedures being called ought
  264.      to have their own proc_descs, and even if they don't,
  265.      heuristic_proc_desc knows how to create them! */
  266.  
  267.       register struct linked_proc_info *link;
  268.       for (link = linked_proc_desc_table; link; link = link->next)
  269.       if (PROC_LOW_ADDR(&link->info) <= pc
  270.           && PROC_HIGH_ADDR(&link->info) > pc)
  271.           return &link->info;
  272.       proc_desc =
  273.       heuristic_proc_desc(heuristic_proc_start(pc), pc, next_frame);
  274.     }
  275.   return proc_desc;
  276. }
  277.  
  278. mips_extra_func_info_t cached_proc_desc;
  279.  
  280. FRAME_ADDR
  281. mips_frame_chain(frame)
  282.     FRAME frame;
  283. {
  284.     mips_extra_func_info_t proc_desc;
  285.     CORE_ADDR saved_pc = FRAME_SAVED_PC(frame);
  286.  
  287.     if (saved_pc == 0 || inside_entry_file (saved_pc))
  288.       return 0;
  289.  
  290.     proc_desc = find_proc_desc(saved_pc, frame);
  291.     if (!proc_desc)
  292.       return 0;
  293.  
  294.     cached_proc_desc = proc_desc;
  295.     return read_next_frame_reg(frame, PROC_FRAME_REG(proc_desc))
  296.       + PROC_FRAME_OFFSET(proc_desc);
  297. }
  298.  
  299. void
  300. init_extra_frame_info(fci)
  301.      struct frame_info *fci;
  302. {
  303.   extern struct obstack frame_cache_obstack;
  304.   /* Use proc_desc calculated in frame_chain */
  305.   mips_extra_func_info_t proc_desc = fci->next ? cached_proc_desc :
  306.       find_proc_desc(fci->pc, fci->next);
  307.  
  308.   fci->saved_regs = (struct frame_saved_regs*)
  309.     obstack_alloc (&frame_cache_obstack, sizeof(struct frame_saved_regs));
  310.   bzero(fci->saved_regs, sizeof(struct frame_saved_regs));
  311.   fci->proc_desc =
  312.       proc_desc == &temp_proc_desc ? 0 : proc_desc;
  313.   if (proc_desc)
  314.     {
  315.       int ireg;
  316.       CORE_ADDR reg_position;
  317.       unsigned long mask;
  318.       /* r0 bit means kernel trap */
  319.       int kernel_trap = PROC_REG_MASK(proc_desc) & 1;
  320.  
  321.       /* Fixup frame-pointer - only needed for top frame */
  322.       /* This may not be quite right, if procedure has a real frame register */
  323.       if (fci->pc == PROC_LOW_ADDR(proc_desc))
  324.       fci->frame = read_register (SP_REGNUM);
  325.       else
  326.       fci->frame = READ_FRAME_REG(fci, PROC_FRAME_REG(proc_desc))
  327.           + PROC_FRAME_OFFSET(proc_desc);
  328.  
  329.       if (proc_desc == &temp_proc_desc)
  330.       *fci->saved_regs = temp_saved_regs;
  331.       else
  332.       {
  333.       /* find which general-purpose registers were saved */
  334.       reg_position = fci->frame + PROC_REG_OFFSET(proc_desc);
  335.       mask = kernel_trap ? 0xFFFFFFFF : PROC_REG_MASK(proc_desc);
  336.       for (ireg= 31; mask; --ireg, mask <<= 1)
  337.           if (mask & 0x80000000)
  338.           {
  339.           fci->saved_regs->regs[ireg] = reg_position;
  340.           reg_position -= 4;
  341.           }
  342.       /* find which floating-point registers were saved */
  343.       reg_position = fci->frame + PROC_FREG_OFFSET(proc_desc);
  344.       /* The freg_offset points to where the first *double* register is saved.
  345.        * So skip to the high-order word. */
  346.       reg_position += 4;
  347.       mask = kernel_trap ? 0xFFFFFFFF : PROC_FREG_MASK(proc_desc);
  348.       for (ireg = 31; mask; --ireg, mask <<= 1)
  349.           if (mask & 0x80000000)
  350.           {
  351.           fci->saved_regs->regs[FP0_REGNUM+ireg] = reg_position;
  352.           reg_position -= 4;
  353.           }
  354.       }
  355.  
  356.       /* hack: if argument regs are saved, guess these contain args */
  357.       if ((PROC_REG_MASK(proc_desc) & 0xF0) == 0) fci->num_args = -1;
  358.       else if ((PROC_REG_MASK(proc_desc) & 0x80) == 0) fci->num_args = 4;
  359.       else if ((PROC_REG_MASK(proc_desc) & 0x40) == 0) fci->num_args = 3;
  360.       else if ((PROC_REG_MASK(proc_desc) & 0x20) == 0) fci->num_args = 2;
  361.       else if ((PROC_REG_MASK(proc_desc) & 0x10) == 0) fci->num_args = 1;
  362.  
  363.       fci->saved_regs->regs[PC_REGNUM] = fci->saved_regs->regs[RA_REGNUM];
  364.     }
  365. }
  366.  
  367.  
  368. CORE_ADDR
  369. mips_push_arguments(nargs, args, sp, struct_return, struct_addr)
  370.   int nargs;
  371.   value *args;
  372.   CORE_ADDR sp;
  373.   int struct_return;
  374.   CORE_ADDR struct_addr;
  375. {
  376.   CORE_ADDR buf;
  377.   register i;
  378.   int accumulate_size = struct_return ? 4 : 0;
  379.   struct mips_arg { char *contents; int len; int offset; };
  380.   struct mips_arg *mips_args =
  381.       (struct mips_arg*)alloca(nargs * sizeof(struct mips_arg));
  382.   register struct mips_arg *m_arg;
  383.   for (i = 0, m_arg = mips_args; i < nargs; i++, m_arg++) {
  384.     extern value value_arg_coerce();
  385.     value arg = value_arg_coerce (args[i]);
  386.     m_arg->len = TYPE_LENGTH (VALUE_TYPE (arg));
  387.     /* This entire mips-specific routine is because doubles must be aligned
  388.      * on 8-byte boundaries. It still isn't quite right, because MIPS decided
  389.      * to align 'struct {int a, b}' on 4-byte boundaries (even though this
  390.      * breaks their varargs implementation...). A correct solution
  391.      * requires an simulation of gcc's 'alignof' (and use of 'alignof'
  392.      * in stdarg.h/varargs.h).
  393.      */
  394.     if (m_arg->len > 4) accumulate_size = (accumulate_size + 7) & -8;
  395.     m_arg->offset = accumulate_size;
  396.     accumulate_size = (accumulate_size + m_arg->len + 3) & -4;
  397.     m_arg->contents = VALUE_CONTENTS(arg);
  398.   }
  399.   accumulate_size = (accumulate_size + 7) & (-8);
  400.   if (accumulate_size < 16) accumulate_size = 16; 
  401.   sp -= accumulate_size;
  402.   for (i = nargs; m_arg--, --i >= 0; )
  403.     write_memory(sp + m_arg->offset, m_arg->contents, m_arg->len);
  404.   if (struct_return) {
  405.     buf = struct_addr;
  406.     write_memory(sp, &buf, sizeof(CORE_ADDR));
  407. }
  408.   return sp;
  409. }
  410.  
  411. /* MASK(i,j) == (1<<i) + (1<<(i+1)) + ... + (1<<j)). Assume i<=j<31. */
  412. #define MASK(i,j) ((1 << (j)+1)-1 ^ (1 << (i))-1)
  413.  
  414. void
  415. mips_push_dummy_frame()
  416. {
  417.   int ireg;
  418.   struct linked_proc_info *link = (struct linked_proc_info*)
  419.       xmalloc(sizeof(struct linked_proc_info));
  420.   mips_extra_func_info_t proc_desc = &link->info;
  421.   CORE_ADDR sp = read_register (SP_REGNUM);
  422.   CORE_ADDR save_address;
  423.   REGISTER_TYPE buffer;
  424.   link->next = linked_proc_desc_table;
  425.   linked_proc_desc_table = link;
  426. #define PUSH_FP_REGNUM 16 /* must be a register preserved across calls */
  427. #define GEN_REG_SAVE_MASK MASK(1,16)|MASK(24,28)|(1<<31)
  428. #define GEN_REG_SAVE_COUNT 22
  429. #define FLOAT_REG_SAVE_MASK MASK(0,19)
  430. #define FLOAT_REG_SAVE_COUNT 20
  431. #define SPECIAL_REG_SAVE_COUNT 4
  432.   /*
  433.    * The registers we must save are all those not preserved across
  434.    * procedure calls. Dest_Reg (see tm-mips.h) must also be saved.
  435.    * In addition, we must save the PC, and PUSH_FP_REGNUM.
  436.    * (Ideally, we should also save MDLO/-HI and FP Control/Status reg.)
  437.    *
  438.    * Dummy frame layout:
  439.    *  (high memory)
  440.    *     Saved PC
  441.    *    Saved MMHI, MMLO, FPC_CSR
  442.    *    Saved R31
  443.    *    Saved R28
  444.    *    ...
  445.    *    Saved R1
  446.    *    Saved D18 (i.e. F19, F18)
  447.    *    ...
  448.    *    Saved D0 (i.e. F1, F0)
  449.    *    CALL_DUMMY (subroutine stub; see m-mips.h)
  450.    *    Parameter build area (not yet implemented)
  451.    *  (low memory)
  452.    */
  453.   PROC_REG_MASK(proc_desc) = GEN_REG_SAVE_MASK;
  454.   PROC_FREG_MASK(proc_desc) = FLOAT_REG_SAVE_MASK;
  455.   PROC_REG_OFFSET(proc_desc) = /* offset of (Saved R31) from FP */
  456.       -sizeof(long) - 4 * SPECIAL_REG_SAVE_COUNT;
  457.   PROC_FREG_OFFSET(proc_desc) = /* offset of (Saved D18) from FP */
  458.       -sizeof(double) - 4 * (SPECIAL_REG_SAVE_COUNT + GEN_REG_SAVE_COUNT);
  459.   /* save general registers */
  460.   save_address = sp + PROC_REG_OFFSET(proc_desc);
  461.   for (ireg = 32; --ireg >= 0; )
  462.     if (PROC_REG_MASK(proc_desc) & (1 << ireg))
  463.       {
  464.     buffer = read_register (ireg);
  465.     write_memory (save_address, &buffer, sizeof(REGISTER_TYPE));
  466.     save_address -= 4;
  467.       }
  468.   /* save floating-points registers */
  469.   save_address = sp + PROC_FREG_OFFSET(proc_desc);
  470.   for (ireg = 32; --ireg >= 0; )
  471.     if (PROC_FREG_MASK(proc_desc) & (1 << ireg))
  472.       {
  473.     buffer = read_register (ireg + FP0_REGNUM);
  474.     write_memory (save_address, &buffer, 4);
  475.     save_address -= 4;
  476.       }
  477.   write_register (PUSH_FP_REGNUM, sp);
  478.   PROC_FRAME_REG(proc_desc) = PUSH_FP_REGNUM;
  479.   PROC_FRAME_OFFSET(proc_desc) = 0;
  480.   buffer = read_register (PC_REGNUM);
  481.   write_memory (sp - 4, &buffer, sizeof(REGISTER_TYPE));
  482.   buffer = read_register (HI_REGNUM);
  483.   write_memory (sp - 8, &buffer, sizeof(REGISTER_TYPE));
  484.   buffer = read_register (LO_REGNUM);
  485.   write_memory (sp - 12, &buffer, sizeof(REGISTER_TYPE));
  486.   buffer = read_register (FCRCS_REGNUM);
  487.   write_memory (sp - 16, &buffer, sizeof(REGISTER_TYPE));
  488.   sp -= 4 * (GEN_REG_SAVE_COUNT+FLOAT_REG_SAVE_COUNT+SPECIAL_REG_SAVE_COUNT);
  489.   write_register (SP_REGNUM, sp);
  490.   PROC_LOW_ADDR(proc_desc) = sp - CALL_DUMMY_SIZE + CALL_DUMMY_START_OFFSET;
  491.   PROC_HIGH_ADDR(proc_desc) = sp;
  492.   SET_PROC_DESC_IS_DUMMY(proc_desc);
  493.   PROC_PC_REG(proc_desc) = RA_REGNUM;
  494. }
  495.  
  496. void
  497. mips_pop_frame()
  498. { register int regnum;
  499.   FRAME frame = get_current_frame ();
  500.   CORE_ADDR new_sp = frame->frame;
  501.   mips_extra_func_info_t proc_desc = (mips_extra_func_info_t)frame->proc_desc;
  502.   if (PROC_DESC_IS_DUMMY(proc_desc))
  503.     {
  504.       struct linked_proc_info **ptr = &linked_proc_desc_table;;
  505.       for (; &ptr[0]->info != proc_desc; ptr = &ptr[0]->next )
  506.       if (ptr[0] == NULL) abort();
  507.       *ptr = ptr[0]->next;
  508.       free (ptr[0]);
  509.       write_register (HI_REGNUM, read_memory_integer(new_sp - 8, 4));
  510.       write_register (LO_REGNUM, read_memory_integer(new_sp - 12, 4));
  511.       write_register (FCRCS_REGNUM, read_memory_integer(new_sp - 16, 4));
  512.     }
  513.   write_register (PC_REGNUM, FRAME_SAVED_PC(frame));
  514.   if (frame->proc_desc) {
  515.     for (regnum = 32; --regnum >= 0; )
  516.       if (PROC_REG_MASK(proc_desc) & (1 << regnum))
  517.     write_register (regnum,
  518.           read_memory_integer (frame->saved_regs->regs[regnum], 4));
  519.     for (regnum = 32; --regnum >= 0; )
  520.       if (PROC_FREG_MASK(proc_desc) & (1 << regnum))
  521.     write_register (regnum + FP0_REGNUM,
  522.           read_memory_integer (frame->saved_regs->regs[regnum + FP0_REGNUM], 4));
  523.   }
  524.   write_register (SP_REGNUM, new_sp);
  525.   flush_cached_frames ();
  526.   set_current_frame (create_new_frame (new_sp, read_pc ()));
  527. }
  528.  
  529. static void
  530. mips_print_register(regnum, all)
  531.      int regnum, all;
  532. {
  533.       unsigned char raw_buffer[MAX_REGISTER_RAW_SIZE];
  534.       REGISTER_TYPE val;
  535.  
  536.       /* Get the data in raw format.  */
  537.       if (read_relative_register_raw_bytes (regnum, raw_buffer))
  538.     {
  539.       printf_filtered ("%s: [Invalid]", reg_names[regnum]);
  540.       return;
  541.     }
  542.       
  543.       /* If an even floating pointer register, also print as double. */
  544.       if (regnum >= FP0_REGNUM && regnum < FP0_REGNUM+32
  545.       && !((regnum-FP0_REGNUM) & 1)) {
  546.       read_relative_register_raw_bytes (regnum+1, raw_buffer+4);
  547.       printf_filtered ("(d%d: ", regnum-FP0_REGNUM);
  548.       val_print (builtin_type_double, raw_buffer, 0,
  549.              stdout, 0, 1, 0, Val_pretty_default);
  550.       printf_filtered ("); ");
  551.       }
  552.       fputs_filtered (reg_names[regnum], stdout);
  553. #ifndef NUMERIC_REG_NAMES
  554.       if (regnum < 32)
  555.       printf_filtered ("(r%d): ", regnum);
  556.       else
  557. #endif
  558.       printf_filtered (": ");
  559.  
  560.       /* If virtual format is floating, print it that way.  */
  561.       if (TYPE_CODE (REGISTER_VIRTUAL_TYPE (regnum)) == TYPE_CODE_FLT
  562.       && ! INVALID_FLOAT (raw_buffer, REGISTER_VIRTUAL_SIZE(regnum))) {
  563.       val_print (REGISTER_VIRTUAL_TYPE (regnum), raw_buffer, 0,
  564.              stdout, 0, 1, 0, Val_pretty_default);
  565.       }
  566.       /* Else print as integer in hex.  */
  567.       else
  568.     {
  569.       long val;
  570.  
  571.       bcopy (raw_buffer, &val, sizeof (long));
  572.       SWAP_TARGET_AND_HOST ((char *)&val, sizeof (long));
  573.       if (val == 0)
  574.         printf_filtered ("0");
  575.       else if (all)
  576.         printf_filtered (local_hex_format(), val);
  577.       else
  578.         printf_filtered ("%s=%d", local_hex_string(val), val);
  579.     }
  580. }
  581.  
  582. /* Replacement for generic do_registers_info.  */
  583. void
  584. mips_do_registers_info (regnum, fpregs)
  585.      int regnum;
  586.      int fpregs;
  587. {
  588.   if (regnum != -1) {
  589.       mips_print_register (regnum, 0);
  590.       printf_filtered ("\n");
  591.   }
  592.   else {
  593.       for (regnum = 0; regnum < NUM_REGS; ) {
  594.       if ((!fpregs) && regnum >= FP0_REGNUM && regnum <= FCRIR_REGNUM) {
  595.         regnum++;
  596.         continue;
  597.       }
  598.       mips_print_register (regnum, 1);
  599.       regnum++;
  600.       if ((regnum & 3) == 0 || regnum == NUM_REGS)
  601.           printf_filtered (";\n");
  602.       else
  603.           printf_filtered ("; ");
  604.       }
  605.   }
  606. }
  607. /* Return number of args passed to a frame. described by FIP.
  608.    Can return -1, meaning no way to tell.  */
  609.  
  610. int
  611. mips_frame_num_args(fip)
  612.     FRAME fip;
  613. {
  614. #if 0
  615.     struct chain_info_t *p;
  616.  
  617.     p = mips_find_cached_frame(FRAME_FP(fip));
  618.     if (p->valid)
  619.         return p->the_info.numargs;
  620. #endif
  621.     return -1;
  622. }
  623.  
  624.  
  625. /* Bad floats: Returns 0 if P points to a valid IEEE floating point number,
  626.    1 if P points to a denormalized number or a NaN. LEN says whether this is
  627.    a single-precision or double-precision float */
  628. #define SINGLE_EXP_BITS  8
  629. #define DOUBLE_EXP_BITS 11
  630. int
  631. isa_NAN(p, len)
  632.      int *p, len;
  633. {
  634.   int exponent;
  635.   if (len == 4)
  636.     {
  637.       exponent = *p;
  638.       exponent = exponent << 1 >> (32 - SINGLE_EXP_BITS - 1);
  639.       return ((exponent == -1) || (! exponent && *p));
  640.     }
  641.   else if (len == 8)
  642.     {
  643.       exponent = *(p+1);
  644.       exponent = exponent << 1 >> (32 - DOUBLE_EXP_BITS - 1);
  645.       return ((exponent == -1) || (! exponent && *p * *(p+1)));
  646.     }
  647.   else return 1;
  648. }
  649.  
  650. /*
  651.  * Implemented for Irix 4.x by Garrett A. Wollman
  652.  */
  653. #ifdef USE_PROC_FS        /* Target-dependent /proc support */
  654.  
  655. #include <sys/time.h>
  656. #include <sys/procfs.h>
  657.  
  658. typedef unsigned int greg_t;    /* why isn't this defined? */
  659.  
  660. /*
  661.  * See the comment in m68k-tdep.c regarding the utility of these functions.
  662.  */
  663.  
  664. void 
  665. supply_gregset (gregsetp)
  666.      gregset_t *gregsetp;
  667. {
  668.   register int regno;
  669.   register greg_t *regp = (greg_t *)(gregsetp->gp_regs);
  670.  
  671.   /* FIXME: somewhere, there should be a #define for the meaning
  672.      of this magic number 32; we should use that. */
  673.   for(regno = 0; regno < 32; regno++)
  674.     supply_register (regno, (char *)(regp + regno));
  675.  
  676.   supply_register (PC_REGNUM, (char *)&(gregsetp->gp_pc));
  677.   supply_register (HI_REGNUM, (char *)&(gregsetp->gp_mdhi));
  678.   supply_register (LO_REGNUM, (char *)&(gregsetp->gp_mdlo));
  679.   supply_register (PS_REGNUM, (char *)&(gregsetp->gp_cause));
  680. }
  681.  
  682. void
  683. fill_gregset (gregsetp, regno)
  684.      gregset_t *gregsetp;
  685.      int regno;
  686. {
  687.   int regi;
  688.   register greg_t *regp = (greg_t *)(gregsetp->gp_regs);
  689.   extern char registers[];
  690.  
  691.   /* same FIXME as above wrt 32*/
  692.   for (regi = 0; regi < 32; regi++)
  693.     if ((regno == -1) || (regno == regi))
  694.       *(regp + regno) = *(greg_t *) ®isters[REGISTER_BYTE (regi)];
  695.  
  696.   if ((regno == -1) || (regno == PC_REGNUM))
  697.     gregsetp->gp_pc = *(greg_t *) ®isters[REGISTER_BYTE (PC_REGNUM)];
  698.  
  699.   if ((regno == -1) || (regno == PS_REGNUM))
  700.     gregsetp->gp_cause = *(greg_t *) ®isters[REGISTER_BYTE (PS_REGNUM)];
  701.  
  702.   if ((regno == -1) || (regno == HI_REGNUM))
  703.     gregsetp->gp_mdhi = *(greg_t *) ®isters[REGISTER_BYTE (HI_REGNUM)];
  704.  
  705.   if ((regno == -1) || (regno == LO_REGNUM))
  706.     gregsetp->gp_mdlo = *(greg_t *) ®isters[REGISTER_BYTE (LO_REGNUM)];
  707. }
  708.  
  709. /*
  710.  * Now we do the same thing for floating-point registers.
  711.  * We don't bother to condition on FP0_REGNUM since any
  712.  * reasonable MIPS configuration has an R3010 in it.
  713.  *
  714.  * Again, see the comments in m68k-tdep.c.
  715.  */
  716.  
  717. void
  718. supply_fpregset (fpregsetp)
  719.      fpregset_t *fpregsetp;
  720. {
  721.   register int regno;
  722.  
  723.   for (regno = 0; regno < 32; regno++)
  724.     supply_register (FP0_REGNUM + regno,
  725.              (char *)&fpregsetp->fp_r.fp_regs[regno]);
  726.  
  727.   supply_register (FCRCS_REGNUM, (char *)&fpregsetp->fp_csr);
  728.  
  729.   /* FIXME: how can we supply FCRIR_REGNUM?  SGI doesn't tell us. */
  730. }
  731.  
  732. void
  733. fill_fpregset (fpregsetp, regno)
  734.      fpregset_t *fpregsetp;
  735.      int regno;
  736. {
  737.   int regi;
  738.   char *from, *to;
  739.   extern char registers[];
  740.  
  741.   for (regi = FP0_REGNUM; regi < FP0_REGNUM + 32; regi++)
  742.     {
  743.       if ((regno == -1) || (regno == regi))
  744.     {
  745.       from = (char *) ®isters[REGISTER_BYTE (regi)];
  746.       to = (char *) &(fpregsetp->fp_r.fp_regs[regi]);
  747.       bcopy(from, to, REGISTER_RAW_SIZE (regno));
  748.     }
  749.     }
  750.  
  751.   if ((regno == -1) || (regno == FCRCS_REGNUM))
  752.     fpregsetp->fp_csr = *(unsigned *) ®isters[REGISTER_BYTE(FCRCS_REGNUM)];
  753. }
  754.  
  755. #endif /* USE_PROC_FS */
  756.  
  757. /* To skip prologues, I use this predicate. Returns either PC
  758.    itself if the code at PC does not look like a function prologue,
  759.    PC+4 if it does (our caller does not need anything more fancy). */
  760.  
  761. CORE_ADDR
  762. mips_skip_prologue(pc)
  763.      CORE_ADDR pc;
  764. {
  765.     struct symbol *f;
  766.     struct block *b;
  767.     unsigned long inst;
  768.     int offset;
  769.  
  770.     /* For -g modules and most functions anyways the
  771.        first instruction adjusts the stack.
  772.        But we allow some number of stores before the stack adjustment.
  773.        (These are emitted by varags functions compiled by gcc-2.0. */
  774.     for (offset = 0; offset < 100; offset += 4) {
  775.     inst = read_memory_integer(pc + offset, 4);
  776.     if ((inst & 0xffff0000) == 0x27bd0000) /* addiu $sp,$sp,offset */
  777.         return pc + offset + 4;
  778.     if ((inst & 0xFFE00000) != 0xAFA00000) /* sw reg,n($sp) */
  779.         break;
  780.     }
  781.  
  782.     /* Well, it looks like a frameless. Let's make sure.
  783.        Note that we are not called on the current PC,
  784.        but on the function`s start PC, and I have definitely
  785.        seen optimized code that adjusts the SP quite later */
  786.     b = block_for_pc(pc);
  787.     if (!b) return pc;
  788.  
  789.     f = lookup_symbol(".gdbinfo.", b, LABEL_NAMESPACE, 0, NULL);
  790.     if (!f) return pc;
  791.     /* Ideally, I would like to use the adjusted info
  792.        from mips_frame_info(), but for all practical
  793.        purposes it will not matter (and it would require
  794.        a different definition of SKIP_PROLOGUE())
  795.  
  796.        Actually, it would not hurt to skip the storing
  797.        of arguments on the stack as well. */
  798.     if (((mips_extra_func_info_t)SYMBOL_VALUE(f))->pdr.frameoffset)
  799.     return pc + 4;
  800.  
  801.     return pc;
  802. }
  803.  
  804. /* Figure out where the longjmp will land.
  805.    We expect the first arg to be a pointer to the jmp_buf structure from which
  806.    we extract the pc (JB_PC) that we will land at.  The pc is copied into PC.
  807.    This routine returns true on success. */
  808.  
  809. int
  810. get_longjmp_target(pc)
  811.      CORE_ADDR *pc;
  812. {
  813.   CORE_ADDR jb_addr;
  814.  
  815.   jb_addr = read_register(A0_REGNUM);
  816.  
  817.   if (target_read_memory(jb_addr + JB_PC * JB_ELEMENT_SIZE, pc,
  818.              sizeof(CORE_ADDR)))
  819.     return 0;
  820.  
  821.   SWAP_TARGET_AND_HOST(pc, sizeof(CORE_ADDR));
  822.  
  823.   return 1;
  824. }
  825.